home *** CD-ROM | disk | FTP | other *** search
/ STraTOS 1997 April & May / STraTOS 1 - 1997 April & May.iso / CD01 / PRGMANIA / BFED.10 / FILES.H < prev    next >
Encoding:
C/C++ Source or Header  |  1996-10-21  |  510 b   |  21 lines

  1. #ifndef FILES_H
  2. #define FILES_H
  3.  
  4. #include "wind.h"    /* defs for windowptr */
  5.  
  6.     /* globals vars */
  7. /*extern     char     lastpath[PATH_MAX];
  8. extern    char    fs_insel[PATH_MAX];
  9. extern    char    fs_inpath[PATH_MAX];
  10. */
  11. extern    char    app_path[PATH_MAX];
  12.  
  13.     /* Functions */
  14. extern int read_file(windowptr    thewin);
  15. extern void write_file( windowptr thewin);
  16. extern void save_file(windowptr    thewin);
  17. extern int getfile(windowptr thewin, char *string);
  18. extern int delfile(void);
  19. extern void init_files(void);
  20.  
  21. #endif